Skip to content

Instantly share code, notes, and snippets.

@pingles
Created July 20, 2010 23:05
Show Gist options
  • Save pingles/483742 to your computer and use it in GitHub Desktop.
Save pingles/483742 to your computer and use it in GitHub Desktop.
describe "reducer" do
it "counts occurrences" do
occurrences = [1,1,1,1]
@runner.reduce('andy' => occurrences) do |reducer|
reducer.should_receive(:emit).with('andy', 4)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment