We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a39b3e3 commit 859a747Copy full SHA for 859a747
spec/models/concerns/procedure_path_concern_spec.rb
@@ -47,22 +47,6 @@
47
expect(result).to be_nil
48
end
49
50
-
51
- context "when the migration is pending" do
52
- context "a procedure with the given path exists (but the path is not in the procedure_paths table)" do
53
- let!(:procedure) { create(:procedure) }
54
55
- before do
56
- procedure.update_column("path", "path-not-in-procedure-paths")
57
- procedure.procedure_paths.delete_all
58
- end
59
60
- it "returns the procedure" do
61
- expect(procedure.procedure_paths.count).to eq(0)
62
- expect(Procedure.find_with_path("path-not-in-procedure-paths").first).to eq(procedure)
63
64
65
66
67
68
describe 'path_customized?' do
0 commit comments