We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a28f81f commit 5e0408fCopy full SHA for 5e0408f
1 file changed
evaluationserver/spec/models/step_spec.rb
@@ -1,5 +1,10 @@
1
require 'rails_helper'
2
3
RSpec.describe Step, type: :model do
4
- pending "add some examples to (or delete) #{__FILE__}"
+ context "with only static text" do
5
+ it "has no questions" do
6
+ step = create(:step_with_static_text)
7
+ expect(step.has_questions?).to be false
8
+ end
9
10
end
0 commit comments