- Example groups are executed in random orders so setting let must be taken care of
- before(:all) does not rollback transaction! Test data created remains in the test database!
However, running rspec (on cmd line) will clear the test database.
rake db:test:preparewill also clear the test database.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ## rpc.gd | |
| # An experiment in using HTTPClient | |
| # for blocking RPCs | |
| # @author bibby<bibby@bbby.org> | |
| # | |
| # get( url ) | |
| # post( url, body ) | |
| # put( url, body ) | |
| # delete( url ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // HTTP JSON API. | |
| #include <EtherCard.h> | |
| #include <DHT.h> | |
| #include <Wire.h> | |
| #include <Adafruit_BMP085_U.h> | |
| // Ethernet: |
NewerOlder