File: app_test.rb

package info (click to toggle)
camo 2.3.0%2Bdfsg-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 196 kB
  • sloc: ruby: 113; sh: 100; makefile: 12
file content (12 lines) | stat: -rw-r--r-- 268 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
require 'rubygems'
require 'json'
require 'test/unit'

class CamoAppTest < Test::Unit::TestCase
  def test_heroku_app_json
    app_file = File.expand_path("../../app.json", __FILE__)
    assert_nothing_raised do
      JSON.parse(File.read(app_file))
    end
  end
end