We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e9216b commit 09befdeCopy full SHA for 09befde
spec/arduino_cmd_spec.rb
@@ -59,6 +59,8 @@ def get_sketch(dir, file)
59
60
it "Passes a simple INO sketch at #{sketch_path_ino}" do
61
expect(arduino_cmd.verify_sketch(sketch_path_ino)).to be true
62
+ # try twice in a row
63
+ expect(arduino_cmd.verify_sketch(sketch_path_ino)).to be true
64
end
65
66
it "Rejects a PDE sketch at #{sketch_path_pde}" do
@@ -71,6 +73,9 @@ def get_sketch(dir, file)
71
73
72
74
it "Fails a bad sketch at #{sketch_path_bad}" do
75
expect(arduino_cmd.verify_sketch(sketch_path_bad)).to be false
76
77
78
79
+
80
81
0 commit comments