Sha256: 365dc3e983a9bafe633c745c8c442ef7b7481999892076871e30e4a61f9a83e4

Contents?: true

Size: 375 Bytes

Versions: 10

Compression:

Stored size: 375 Bytes

Contents

require 'test/unit'
require 'active_support/test_case'

class ActiveSupportExampleTest < ActiveSupport::TestCase
  setup do
  end

  def test_normal
    assert_equal 1, 1
  end

  test "carrot" do
    assert_equal 1, 1
  end

  test "daikon" do
    assert_equal 1, 1
    assert_equal 2, 2
    assert_equal 3, 3
  end

  test "eggplant fig" do
    assert_equal 4, 4
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
m-1.3.3 test/examples/active_support_example_test.rb
m-1.3.2 test/examples/active_support_example_test.rb
m-1.3.1 test/examples/active_support_example_test.rb
m-1.3.0 test/examples/active_support_example_test.rb
m-1.2.1 test/examples/active_support_example_test.rb
m-1.2.0 test/examples/active_support_example_test.rb
m-1.1.0 test/examples/active_support_example_test.rb
m-1.0.1 test/examples/active_support_example_test.rb
m-1.0.0 test/examples/active_support_example_test.rb
m-1.0.0.pre test/examples/active_support_example_test.rb