Sha256: fb45dcf8b9de6e59170dd68ae544a6781e91e57534704114b58b169e9b851151

Contents?: true

Size: 399 Bytes

Versions: 9

Compression:

Stored size: 399 Bytes

Contents

require "test_helper"

class BasicBoopsTest < SerializedNonTransactionalTestCase
  i_suck_and_my_tests_are_order_dependent!

  def test_contains_initially_seeded_boops
    assert_equal 10, Boop.count
  end

  def test_adds_some_boops
    3.times { Boop.create! }
    assert_equal 13, Boop.count
  end

  def test_back_to_the_original_number_of_seeded_boops
    assert_equal 10, Boop.count
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
test_data-0.3.2 example/test/integration/basic_boops_test.rb
test_data-0.3.1 example/test/integration/basic_boops_test.rb
test_data-0.3.0 example/test/integration/basic_boops_test.rb
test_data-0.2.2 example/test/integration/basic_boops_test.rb
test_data-0.2.1 example/test/integration/basic_boops_test.rb
test_data-0.2.0 example/test/integration/basic_boops_test.rb
test_data-0.1.0 example/test/integration/basic_boops_test.rb
test_data-0.0.2 example/test/integration/basic_boops_test.rb
test_data-0.0.1 example/test/integration/basic_boops_test.rb