This repository was archived by the owner on Jul 31, 2019. It is now read-only.
File tree 3 files changed +39
-1
lines changed
3 files changed +39
-1
lines changed Original file line number Diff line number Diff line change 1
1
source 'https://rubygems.org'
2
2
3
+ gem 'rake'
3
4
gem 'opal' , :github => 'opal/opal'
4
5
gem 'opal-jquery' , :github => 'opal/opal-jquery'
5
6
gem 'vienna' , :github => 'opal/vienna'
6
- gem 'opal-haml'
7
+ gem 'opal-haml' , :github => 'opal/opal-haml'
8
+ gem 'opal-rspec' , '0.3.0.beta2'
Original file line number Diff line number Diff line change
1
+ require 'bundler'
2
+ Bundler . require
3
+
4
+ require 'opal/rspec/rake_task'
5
+ Opal ::RSpec ::RakeTask . new ( :default ) do |s |
6
+ s . append_path 'app'
7
+ s . append_path 'vendor'
8
+ end
Original file line number Diff line number Diff line change
1
+ require 'opal'
2
+ require 'vienna'
3
+ require 'models/todo'
4
+
5
+ RSpec . configure do |config |
6
+ config . before { Todo . reset! }
7
+ end
8
+
9
+ describe Todo do
10
+ before do
11
+ @task_a = Todo . create ( title : 'Foo' , completed : true )
12
+ @task_b = Todo . create ( title : 'Bar' , completed : false )
13
+ @task_c = Todo . create ( title : 'Baz' , completed : true )
14
+ @task_d = Todo . create ( title : 'Buz' , completed : false )
15
+ end
16
+
17
+ describe '.active' do
18
+ it "returns all non-completed todos" do
19
+ expect ( Todo . active ) . to eq ( [ @task_b , @task_d ] )
20
+ end
21
+ end
22
+
23
+ describe '.completed' do
24
+ it "returns all completed todos" do
25
+ expect ( Todo . completed ) . to eq ( [ @task_a , @task_c ] )
26
+ end
27
+ end
28
+ end
You can’t perform that action at this time.
0 commit comments