diff options
author | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-02-05 12:40:42 +0100 |
---|---|---|
committer | Stefan Wintermeyer <stefan.wintermeyer@amooma.de> | 2013-02-05 12:40:42 +0100 |
commit | bb8168c33f9501fe877345a7bbc7b7f7b64cdfc7 (patch) | |
tree | 8804da99d69819b2d4253e827230f459c0ebac1c /test/unit | |
parent | e13f041741fd3a44f407b623da0274d9748c5c54 (diff) |
Added a BackupJob scaffold.
Diffstat (limited to 'test/unit')
-rw-r--r-- | test/unit/backup_job_test.rb | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/unit/backup_job_test.rb b/test/unit/backup_job_test.rb new file mode 100644 index 0000000..a63c219 --- /dev/null +++ b/test/unit/backup_job_test.rb @@ -0,0 +1,7 @@ +require 'test_helper' + +class BackupJobTest < ActiveSupport::TestCase + def test_should_be_valid + assert BackupJob.new.valid? + end +end |