test/test_polyhedron.rb in mageo-0.0.0 vs test/test_polyhedron.rb in mageo-0.0.1
- old
+ new
@@ -6,9 +6,9 @@
require "mageo/polyhedron.rb"
# initialize でインスタンスを生成できないことのみテストする。
# その他の機能はサブクラスでテスト。
class TC_Polyhedron < Test::Unit::TestCase
- def test_initialize
- assert_raise( NotImplementedError ) { Polyhedron.new }
- end
+ def test_initialize
+ assert_raise( NotImplementedError ) { Polyhedron.new }
+ end
end