To only run a single describe/context block in a long spec, you can say spec spec/models/note_spec.rb:545 ... where the describe...

When a spec only runs when it is called directly, but not as part of the whole test suite, make...

github.com

By default, Cucumber uses mocha. This note shows to use RSpec stubs and mocks instead. Rspec 1 / Rails 2

makandra dev

This is an awesome gadget in your toolbox, even if your test coverage is great. gem install ruby-debug (Ruby...

This raises "Could not find first Keyword": describe Keyword do it { should validate_uniqueness_of(:text) } end Do this instead...

There will probably be better solutions as we become more experienced with using Bundler, and more command line tools become...

makandra dev

Update RubyGems and Passenger Bundler requires Rubygems >= 1.3.6. Run gem update --system if you have an older version.

github.com

There are three ways to define your own RSpec matchers, with increasing complexibility and options: 1) Use RSpec::Matchers.define

When you roll custom URLs with hacks like routing-filter, you can put a spec like this into spec/routing/routing_spec.rb:

Don't use should validate_format_of(...) because that matcher works in weird ways. Use the allow_value matcher instead...

makandra dev
github.com

Our awesome collection of rspec helpers (formerly known as "spec_candy.rb") is now available as a gem. It works, it is...

With defaults, RCov doesn't work the way you how you would like it to. To create a nice test...

makandra dev

rspec_spinner is a progress bar for RSpec which outputs failing examples as they happen (instead of all at the...

makandra dev

Install gem and plugin sudo gem install parallel script/plugin install git://github.com/grosser/parallel_tests.git Adapt config/database.yml test: database: xxx_test<%= ENV...

makandra dev

Basic configuration Please keep this config simple. It should be a starting point for new developers learning Git. [user]

opensoul.org

What if my controller decides to take the Thing.create! and rescue route? What if my model has a special initializer...

idolhands.com

Passing the --profile flag to RSpec produces some additional output, namely the running times of the ten slowest examples in...

gusiev.com

What do we expect from the custom finder? We expect that it should find assets A, B, C and should...