Remove test unit tests (already have rspec)

This commit is contained in:
Cyril Lepagnot 2017-09-26 10:00:47 +02:00
parent ba7b983723
commit 83d1c27b45

View File

@ -1,12 +0,0 @@
require File.join(File.dirname(__FILE__), 'gilded_rose')
require 'test/unit'
class TestUntitled < Test::Unit::TestCase
def test_foo
items = [Item.new("foo", 0, 0)]
GildedRose.new(items).update_quality()
assert_equal items[0].name, "fixme"
end
end