Sha256: 90dbf43714d4cb4a2a05265bfd1e4105c5b2f7df4deae2093368fa1125167c7e

Contents?: true

Size: 527 Bytes

Versions: 1

Compression:

Stored size: 527 Bytes

Contents

require 'spec_helper'

module DbdOntoEngine
  describe "Ontologies" do
    describe "GET /ontologies" do
      it "shows the ontologies" do
        visit dbd_onto_engine.root_path
        expect(page).to have_text('Ontologies')
      end

      it "shows the provenance ontology" do
        visit dbd_onto_engine.root_path
        expect(page).to have_text('Context')
      end

      it "shows the meta ontology" do
        visit dbd_onto_engine.root_path
        expect(page).to have_text('Meta')
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
dbd_onto_engine-0.0.2 spec/features/dbd_onto_engine/ontologies_spec.rb