DEBSOURCES
Skip Quicknav
sources / ruby-mocha / 0.11.3-3 / test / simple_counter.rb
12345678910111213
class SimpleCounter attr_reader :count def initialize @count = 0 end def increment @count += 1 end end