aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--spec/lib/af83/stored_procedures/clone_schema_with_organisation_spec.rb21
1 files changed, 0 insertions, 21 deletions
diff --git a/spec/lib/af83/stored_procedures/clone_schema_with_organisation_spec.rb b/spec/lib/af83/stored_procedures/clone_schema_with_organisation_spec.rb
deleted file mode 100644
index 8a16f73c6..000000000
--- a/spec/lib/af83/stored_procedures/clone_schema_with_organisation_spec.rb
+++ /dev/null
@@ -1,21 +0,0 @@
-require 'spec_helper'
-
-RSpec.describe StoredProcedures do
- context "clone schema with data" do
- before do
- seed_schema "source_schema"
- end
-
- context "before cloning source schema is set up correctly w/o target_schema" do
- it "with two different organisations" do
- expect(Organisation.count).to eq(2)
- end
- end
- end
-
- private
- def seed_schema schema_name
- source_org, target_org = 2.times.map{ create :organisation }
-
- end
-end