test/tc_point3c.rb in eymiha_math3-0.1.0 vs test/tc_point3c.rb in eymiha_math3-1.0.0
- old
+ new
@@ -1,11 +1,12 @@
require 'test/unit'
-require 'point3c'
+require 'eymiha/math3/point3c'
-class TC_Point3c < Test::Unit::TestCase
+include Eymiha
+include Eymiha::ThreeDimensions
- understands ThreeDimensions
+class TC_Point3c < Test::Unit::TestCase
def test_initialize_and_equality
p3c = Point3c.new
assert((p3c.c_radius == 0)&&(p3c.theta == 0)&&(p3c.z == 0))
p3c = Point3c.new 1,2,3