To add a collaborator to this project you will need to use the Relish gem to add the collaborator via a terminal command. Soon you'll be able to also add collaborators here!
More about adding a collaboratormock with rspec
As an RSpec user who likes to mock
I want to be able to use rspec
- Scenarios
-
- Mock with rspec
-
- Given
-
a file named "rspec_example_spec.rb" with:
RSpec.configure do |config| config.mock_framework = :rspec end describe "plugging in rspec" do it "allows rspec to be used" do target = mock('target') target.should_receive(:foo) target.foo end end
- When
- I run "rspec ./rspec_example_spec.rb"
- Then
- the output should contain "1 example, 0 failures"
- And
- the exit status should be 0
Last published over 7 years ago by .