test/test_polyhedron.rb in mageo-0.0.1 vs test/test_polyhedron.rb in mageo-0.0.2
- old
+ new
@@ -1,14 +1,15 @@
#! /usr/bin/env ruby
# coding: utf-8
-require "test/unit"
+#require "test/unit"
require "helper"
-require "mageo/polyhedron.rb"
+#require 'mageo.rb'
+#require "mageo/polyhedron.rb"
# initialize でインスタンスを生成できないことのみテストする。
# その他の機能はサブクラスでテスト。
class TC_Polyhedron < Test::Unit::TestCase
def test_initialize
- assert_raise( NotImplementedError ) { Polyhedron.new }
+ assert_raise( NotImplementedError ) { Mageo::Polyhedron.new }
end
end