Skip to content

Latest commit

 

History

History
23 lines (21 loc) · 865 Bytes

README.md

File metadata and controls

23 lines (21 loc) · 865 Bytes

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