Sha256: cd6b914471a6e93db239bf616620703b99a0abbaa52e7a531a03b65e14beed51

Contents?: true

Size: 462 Bytes

Versions: 3

Compression:

Stored size: 462 Bytes

Contents

require File.dirname(__FILE__) + "/../test_helper"

class MeshTest < Test::Unit::TestCase
	
	should "have a few new methods" do
		assert Mesh.instance_methods.include?("shared_vertex_data=")
		assert Mesh.instance_methods.include?("shared_vertex_data")
		assert Mesh.instance_methods.include?("suggest_tangent_vector_build_params")
	end

	should "not have other methods" do
		assert !Mesh.instance_methods.include?("get_pose_iterator")	
	end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ogre.rb-0.2-i686-linux test/unit/mesh_test.rb
ogre.rb-0.2-i386-mswin32 test/unit/mesh_test.rb
ogre.rb-0.2-x86_64-linux test/unit/mesh_test.rb