forked from qertoip/guru_watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patht
executable file
·47 lines (40 loc) · 1.47 KB
/
t
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
echo
echo
echo 'Library / Entities API'
echo '-------------------------------------------------------------------------------------'
bundle exec rake test:lib:entities_api
echo
echo
echo 'Library / Use Cases API'
echo '-------------------------------------------------------------------------------------'
bundle exec rake test:lib:use_cases_api
echo
echo
echo 'Library / Ruby Persistence API with ActiveMemory Backend'
echo '-------------------------------------------------------------------------------------'
bundle exec rake test:lib:ruby_persistence_api BACKEND=active_memory
echo
echo
echo 'Library / Ruby Persistence API with ActiveRecord Backend'
echo '-------------------------------------------------------------------------------------'
bundle exec rake test:lib:ruby_persistence_api BACKEND=active_record
echo
echo
echo 'Application / Entities'
echo '-------------------------------------------------------------------------------------'
bundle exec rake test:app:entities
echo
echo
echo 'Application / Use Cases'
echo '-------------------------------------------------------------------------------------'
bundle exec rake test:app:use_cases
echo
echo
echo 'Application / Frontends'
echo '-------------------------------------------------------------------------------------'
bundle exec rake test:app:frontends
echo
echo
echo 'Application / Backends'
echo '-------------------------------------------------------------------------------------'
bundle exec rake test:app:backends