entity_test.rb revision 64ee02553e8d41243c9d255192fde605827f34c3
require 'test_helper'
context 'Migrations' do
end
end
end
context 'Associations' do
end
context 'OntologyInstance' do
setup do
end
context 'creating CommonLogic Entities' do
setup do
@entity_hash = {
'name' => 'nat',
'range' => '28.9',
'kind' => 'sort',
'text' => 'nat'
}
end
context 'attributes' do
setup do
end
should "be #{attr}" do
end
end
should "have display_name nil" do
end
should "have iri nil" do
end
end
end
context 'When creating OWL2 Entities' do
context 'with fragment in URI' do
setup do
end
should 'display_name attribute be the fragment' do
end
should 'iri be set' do
end
end
context 'without fragment in URI, the display_name attribute' do
setup do
end
should 'be the last path segment' do
end
end
end
end
end