fix for stupid bug and add test to make sure it does not happen again
This commit is contained in:
parent
5283cd35e8
commit
df8c987a5f
1
Gemfile
1
Gemfile
|
@ -4,5 +4,4 @@ source 'https://rubygems.org'
|
|||
gemspec
|
||||
|
||||
gem 'flowerbox', :path => '../flowerbox'
|
||||
gem 'flowerbox-delivery', :path => '../flowerbox-delivery'
|
||||
gem 'guard'
|
||||
|
|
|
@ -1,10 +1,4 @@
|
|||
if !Attentive? then Attentive = {}
|
||||
c.test_with :jasmine
|
||||
c.run_with :node
|
||||
|
||||
c.asset_paths << "lib/assets/javascripts"
|
||||
|
||||
c.report_with :verbose
|
||||
|
||||
class Attentive.Presentation
|
||||
@setup: (identifier) ->
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
#= require attentive/presentation
|
||||
|
||||
describe 'Attentive.Presentation', ->
|
||||
it 'should be ok', ->
|
||||
Attentive.Presenation
|
||||
|
Loading…
Reference in New Issue