domotics-arduino 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/lib/domotics/arduino/version.rb +1 -1
- data/test/test_arduino.rb +2 -2
- metadata +1 -1
data/test/test_arduino.rb
CHANGED
@@ -10,12 +10,12 @@ class ArduinoTest < Test::Unit::TestCase
|
|
10
10
|
def asetup
|
11
11
|
@brd = ArduinoTestBoard.new(port: BoardEmulator.new.port)
|
12
12
|
end
|
13
|
-
def
|
13
|
+
def atest_dead_board
|
14
14
|
assert_raise Domotics::Arduino::ArduinoError do
|
15
15
|
ArduinoTestBoard.new(port: BoardEmulator.new(type: :dead).port)
|
16
16
|
end
|
17
17
|
end
|
18
|
-
def
|
18
|
+
def atest_crasy_board
|
19
19
|
assert_raise Domotics::Arduino::ArduinoError do
|
20
20
|
ArduinoTestBoard.new(port: BoardEmulator.new(type: :crasy).port)
|
21
21
|
end
|