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 0df318d commit fce3b38Copy full SHA for fce3b38
1 file changed
spec/jobs/analysis/file_conversion_job_spec.rb
@@ -52,16 +52,6 @@
52
})
53
end
54
55
- it "creates a reverse file equivalence with the original file" do # rubocop:todo RSpec/ExampleLength
56
- described_class.perform_now(file.id, :threemf)
57
- new_file = ModelFile.where.not(id: file.id).first
58
- expect(file.relationships.first.attributes).to include({
59
- "subject_id" => file.id,
60
- "objekt_id" => new_file.id,
61
- "predicate" => "alternative_format_of"
62
- })
63
- end
64
-
65
it "logs an error for non-manifold meshes" do
66
pending "temporarily disabled"
67
allow(file).to receive(:manifold?).and_return(false)
0 commit comments