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