/snippets

Primary LanguageRuby

Testing

Rspec

Speedup test

Instance double docs and Class double docs

instance_double('User', first_name: 'John')

Views

Stub view methods docs

before do
 allow(view).to receive(:admin?).and_return(true)
end

Capybara