File: test_subtracter.rb

package info (click to toggle)
ruby-test-unit 2.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 772 kB
  • sloc: ruby: 11,397; makefile: 6
file content (20 lines) | stat: -rw-r--r-- 431 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Author:: Nathaniel Talbott.
# Copyright:: Copyright (c) 2000-2002 Nathaniel Talbott. All rights reserved.
# License:: Ruby license.

require 'test/unit'
require 'subtracter'

class TestSubtracter < Test::Unit::TestCase
  def setup
    @subtracter = Subtracter.new(5)
  end

  def test_subtract
    assert_equal(3, @subtracter.subtract(2), "Should have subtracted correctly")
  end

  def teardown
    @subtracter = nil
  end
end