continuous_integration 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: de6e3f32cbf63e9eed9246e387ca93afd5fa8797
4
- data.tar.gz: 6b59d1cf3cd752185ec01b6253e978f0959f694c
3
+ metadata.gz: b2eade69aa72a31db48ddacd1845989d872e1c57
4
+ data.tar.gz: eab01e898b65aba5ae26749bc22d8de32808fe32
5
5
  SHA512:
6
- metadata.gz: 25942a41c4ce82a56e06a73f7a7e45b7576ea2d75eed48f82656abb5fca37058c46d6233802d8fc109a2b430956eff2d46d1611bfa7af992766e7e22c02ff211
7
- data.tar.gz: fa2519204d259d20d7229ae9e719d36a3bb259b047be57b01c3d6fbb5e8a478e31228c26326e3f66868207340d428da10e629d4c641c0a72676b392d90ecd658
6
+ metadata.gz: 8b5c3331973c9e7f71628b70bed353c83f83c1bbb927c2aab14e1cd8d6ff9ac9020990e954592297d3fa764ecef7b8890543b9d9c2ca28f8d85936949862862b
7
+ data.tar.gz: 925bdb6a7aa2c5edc1bde0ee7833229c05de92f0fd4a73092c5fba16578e846c09a440161cf0f8724c8eab9b0fc69ff34fa15617958bb8caa9c669721f425bca
data/Rakefile ADDED
@@ -0,0 +1,8 @@
1
+ require 'rake/testtask'
2
+
3
+ Rake::TestTask.new do |t|
4
+ t.libs << 'test'
5
+ end
6
+
7
+ desc "Run tests"
8
+ task :default => :test
@@ -1,3 +1,3 @@
1
1
  module ContinuousIntegration
2
- VERSION = "0.0.5"
2
+ VERSION = "0.0.6"
3
3
  end
@@ -0,0 +1,20 @@
1
+ require 'minitest/autorun'
2
+ require 'continuous_integration'
3
+
4
+ class HolaTest < Minitest::Test
5
+ def test_run_ci
6
+ #assert_equal "hello world", Hola.hi("english")
7
+ end
8
+
9
+ def test_shutdown_server
10
+ #assert_equal "hello world", Hola.hi("ruby")
11
+ end
12
+
13
+ def test_run_server
14
+ #assert_equal "hola mundo", Hola.hi("spanish")
15
+ end
16
+
17
+ def test_dir_mount
18
+ #assert_equal "hola mundo", Hola.hi("spanish")
19
+ end
20
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: continuous_integration
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.5
4
+ version: 0.0.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ragavendra Nagraj
@@ -52,12 +52,14 @@ files:
52
52
  - Gemfile.lock
53
53
  - LICENSE.txt
54
54
  - README.md
55
+ - Rakefile
55
56
  - bin/continuous_integration
56
57
  - continuous_integration.gemspec
57
58
  - lib/continuous_integration.rb
58
59
  - lib/continuous_integration/constants.rb
59
60
  - lib/continuous_integration/tasks.rb
60
61
  - lib/continuous_integration/version.rb
62
+ - test/test_continuous_integration.rb
61
63
  homepage: https://rubygems.org/gems/continuous_integration
62
64
  licenses:
63
65
  - MIT
@@ -82,4 +84,5 @@ rubygems_version: 2.5.2
82
84
  signing_key:
83
85
  specification_version: 4
84
86
  summary: One can run their UI and API tests using this gem
85
- test_files: []
87
+ test_files:
88
+ - test/test_continuous_integration.rb