5,026 reputation
2734
bio website sevenseacat.net
location Australia
age
visits member for 2 years, 4 months
seen 41 mins ago
stats profile views 360

2d
comment How to add link, pic or apply css style to browser alert window?
I doubt that's a native browser alert window...
2d
reviewed Approve suggested edit on JavaScript function runs for 1 second then clears?
May
14
answered Automatic ID generation with create! block in model
May
14
comment Automatic ID generation with create! block in model
Simplest way is just to recreate the table.
May
14
comment How to call the create action from the controller in RSpec
Some people do, but that doesn't mean you just put controller tests inside a request spec.
May
14
comment Automatic ID generation with create! block in model
I'm not laughing, I'm smacking my forehead. And did you reset it back to being auto-incrementing when you did that?
May
14
comment Automatic ID generation with create! block in model
and why is that? What have you done to your schema?
May
14
comment How to call the create action from the controller in RSpec
Again this is not a request spec. A controller spec is the only one that explicitly calls a controller action.
May
14
comment How to call the create action from the controller in RSpec
I think you're a little confused about what FactoryGirl is for... it's for generating data in your database, not for calling controller actions. And what you have described in your post_pages_spec.rb looks like a unit test on the Post model, not an actual request spec. Explicitly calling controller actions is only done in controller specs, and is done like so: relishapp.com/rspec/rspec-rails/v/2-13/docs/controller-specs
May
14
comment Automatic ID generation with create! block in model
Why on earth are you setting the id column to 0? IDs should be auto-incremented columns and handled completely by your database.
May
13
answered How to ensure presence validation on a form before performing operations
May
13
revised Why do I need to “bundle install” before pushing a rails app to heroku?
added 8 characters in body
May
13
comment How can I click_link a specific row with Capybara
That will work if the text and the link are in the same cell. My xpath command will get the row that that cell is in.
May
13
comment why this is not the array I need?
what is the actual result you're currently getting?
May
13
answered How can I click_link a specific row with Capybara
May
13
comment stack level too deep (SystemStackError) when using both rspec and cucumber with ruby and rails
No, that's how it should be written. Do you have something in that file that is trying to do recursive things?
May
13
comment stack level too deep (SystemStackError) when using both rspec and cucumber with ruby and rails
Try removing Spork.
May
13
answered Partial locals are not being passed
May
12
comment Simulate closing/reopening the browser in cucumber/capybara?
I didn't find an answer, but ultimately ended up discarding the test. Sorry!
May
11
comment What is actually wrong with this jQuery code?
what does it do that it shouldnt do, or what does it not do that it should?