ontology_import_xml_test.rb revision 3c4b1bd39fa36d241f2ef0d6f7ebbf2a9a6f4d36
require 'test_helper'
context 'Import single Ontology' do
setup do
end
should 'save logic' do
end
context 'entity count' do
should 'be correct' do
end
end
context 'sentence count' do
should 'be correct' do
end
end
end
context 'Import distributed Ontology' do
setup do
end
should 'create single ontologies' do
end
should 'have children ontologies' do
end
should 'have correct link count' do
end
should 'have no logic' do
end
should 'have no entities' do
end
should 'have no sentences' do
end
context 'first child ontology' do
setup do
end
should 'have entities' do
end
should 'have sentences' do
end
end
context 'all child ontologies' do
should 'have the same state as the parent' do
@ontology.children.each do |c|
end
end
end
end
context 'Import another distributed Ontology' do
setup do
end
should 'create single ontologies' do
end
should 'create combined ontology' do
end
context 'kinds' do
setup do
end
should 'be assigned to symbols of combined ontology' do
end
end
end
end