nayutaya-kagemusha 0.0.9 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
data/README CHANGED
@@ -1,5 +1,5 @@
1
1
 
2
- = Kagemusha - a library of testing mock-objects
2
+ = Kagemusha - A Testing Mock-Objects Library
3
3
 
4
4
  http://github.com/nayutaya/kagemusha/
5
5
 
@@ -7,16 +7,16 @@ http://github.com/nayutaya/kagemusha/
7
7
 
8
8
  Kagemusha is a library of helper functions
9
9
  for testing Ruby scripts. It helps you generating
10
- scoped mock-objects which overrides behavior of
11
- the class restricted in given blocks, without
10
+ scoped mock-objects which overrides the behavior of
11
+ a class only in a given blocks, without
12
12
  tainting a global area.
13
13
 
14
- For example, if you override Date.today when you write
14
+ For example, if you override Date.today when you are writing
15
15
  something about dates, then the code will taint global
16
- areas to no purpose.
16
+ areas involuntarily.
17
17
 
18
- If you use Kagemusha, the test code will override
19
- behavior of the class restricted in given block.
18
+ But if you use Kagemusha, the test code will override
19
+ the behavior of the class only in the given block.
20
20
 
21
21
  Example:
22
22
  require "kagemusha"
@@ -30,8 +30,8 @@ Example:
30
30
  p Time.now.to_s #=> "2000-01-01"
31
31
  }
32
32
 
33
- Also, it has default useful mock-objects set Date, Time,
34
- rand, and so on.
33
+ Also, it has some default useful mock-objects set include
34
+ Date, Time and rand.
35
35
 
36
36
  Example:
37
37
  require "kagemusha/date"
@@ -43,7 +43,7 @@ Example:
43
43
 
44
44
  == SYNOPSIS:
45
45
 
46
- see example directory.
46
+ See the example directory.
47
47
 
48
48
  == INSTALL:
49
49
 
@@ -55,3 +55,8 @@ install it via RubyGems. You can do this easily:
55
55
  == LICENSE:
56
56
 
57
57
  Ruby's License
58
+
59
+ == SUPPORT:
60
+
61
+ Contact me.
62
+ Yuya Kato <yuyakato at gmail.com>
data/Rakefile CHANGED
@@ -14,8 +14,9 @@ task :gemspec do
14
14
  require "erb"
15
15
  require "lib/kagemusha"
16
16
 
17
- src = File.open("kagemusha.gemspec.erb", "rb") { |file| file.read }
18
- erb = ERB.new(src, nil, "-")
17
+ name = "nayutaya-kagemusha"
18
+ src = File.open("#{name}.gemspec.erb", "rb") { |file| file.read }
19
+ erb = ERB.new(src, nil, "-")
19
20
 
20
21
  version = Kagemusha::VERSION
21
22
  date = Time.now.strftime("%Y-%m-%d")
@@ -23,7 +24,7 @@ task :gemspec do
23
24
  files = Dir.glob("**/*").select { |s| File.file?(s) }
24
25
  test_files = Dir.glob("test/**").select { |s| File.file?(s) }
25
26
 
26
- File.open("kagemusha.gemspec", "wb") { |file|
27
+ File.open("#{name}.gemspec", "wb") { |file|
27
28
  file.write(erb.result(binding))
28
29
  }
29
30
  end
data/examples/date.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  # coding: utf-8
2
- # $Id: date.rb 108 2009-02-09 06:04:39Z yuyakato $
3
2
 
4
3
  require "rubygems"
5
4
  require "kagemusha/date"
data/examples/datetime.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  # coding: utf-8
2
- # $Id: datetime.rb 108 2009-02-09 06:04:39Z yuyakato $
3
2
 
4
3
  require "rubygems"
5
4
  require "kagemusha/datetime"
data/examples/first.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  # coding: utf-8
2
- # $Id: first.rb 108 2009-02-09 06:04:39Z yuyakato $
3
2
 
4
3
  require "rubygems"
5
4
  require "kagemusha"
data/examples/rand.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  # coding: utf-8
2
- # $Id: rand.rb 108 2009-02-09 06:04:39Z yuyakato $
3
2
 
4
3
  require "rubygems"
5
4
  require "kagemusha/rand"
data/examples/style.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  # coding: utf-8
2
- # $Id: style.rb 117 2009-02-09 08:09:27Z yuyakato $
3
2
 
4
3
  require "rubygems"
5
4
  require "kagemusha"
data/examples/time.rb CHANGED
@@ -1,5 +1,4 @@
1
1
  # coding: utf-8
2
- # $Id: time.rb 108 2009-02-09 06:04:39Z yuyakato $
3
2
 
4
3
  require "rubygems"
5
4
  require "kagemusha/time"
data/lib/kagemusha.rb CHANGED
@@ -1,11 +1,4 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: kagemusha.rb 108 2009-02-09 06:04:39Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.join(File.dirname(__FILE__), "kagemusha", "version")
8
4
  require File.join(File.dirname(__FILE__), "kagemusha", "core")
9
-
10
- #==============================================================================#
11
- #==============================================================================#
@@ -1,9 +1,5 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: composite.rb 108 2009-02-09 06:04:39Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  class Kagemusha
8
4
  class Composite
9
5
  def initialize(*mocks)
@@ -37,6 +33,3 @@ class Kagemusha
37
33
  end
38
34
  end
39
35
  end
40
-
41
- #==============================================================================#
42
- #==============================================================================#
@@ -1,13 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: core.rb 113 2009-02-09 07:30:04Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.join(File.dirname(__FILE__), "composite")
8
4
 
9
- #==============================================================================#
10
-
11
5
  class Kagemusha #:nodoc:
12
6
  def initialize(klass) #:nodoc:
13
7
  @klass = klass
@@ -155,6 +149,3 @@ class Kagemusha #:nodoc:
155
149
  return array.map { |item| item.to_sym }
156
150
  end
157
151
  end
158
-
159
- #==============================================================================#
160
- #==============================================================================#
@@ -1,14 +1,8 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: date.rb 108 2009-02-09 06:04:39Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.join(File.dirname(__FILE__), "core")
8
4
  require "date"
9
5
 
10
- #==============================================================================#
11
-
12
6
  class Kagemusha #:nodoc:
13
7
  module Date #:nodoc:
14
8
  def self.on(date_or_year, mon = 1, mday = 1, &block) #:nodoc:
@@ -30,6 +24,3 @@ class Kagemusha #:nodoc:
30
24
  end
31
25
  end
32
26
  end
33
-
34
- #==============================================================================#
35
- #==============================================================================#
@@ -1,14 +1,8 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: datetime.rb 108 2009-02-09 06:04:39Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.join(File.dirname(__FILE__), "date")
8
4
  require File.join(File.dirname(__FILE__), "time")
9
5
 
10
- #==============================================================================#
11
-
12
6
  class Kagemusha #:nodoc:
13
7
  module DateTime #:nodoc:
14
8
  def self.at(time_or_year, mon = 1, mday = 1, hour = 0, min = 0, sec = 0, &block)
@@ -36,6 +30,3 @@ class Kagemusha #:nodoc:
36
30
  end
37
31
  end
38
32
  end
39
-
40
- #==============================================================================#
41
- #==============================================================================#
@@ -1,13 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: rand.rb 116 2009-02-09 08:04:16Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.join(File.dirname(__FILE__), "core")
8
4
 
9
- #==============================================================================#
10
-
11
5
  class Kagemusha #:nodoc:
12
6
  module Rand
13
7
  def self.always(num, &block)
@@ -22,6 +16,3 @@ class Kagemusha #:nodoc:
22
16
  end
23
17
  end
24
18
  end
25
-
26
- #==============================================================================#
27
- #==============================================================================#
@@ -1,13 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: time.rb 108 2009-02-09 06:04:39Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.join(File.dirname(__FILE__), "core")
8
4
 
9
- #==============================================================================#
10
-
11
5
  class Kagemusha #:nodoc:
12
6
  module Time #:nodoc:
13
7
  def self.at(time_or_year, mon = 1, mday = 1, hour = 0, min = 0, sec = 0, &block)
@@ -29,6 +23,3 @@ class Kagemusha #:nodoc:
29
23
  end
30
24
  end
31
25
  end
32
-
33
- #==============================================================================#
34
- #==============================================================================#
@@ -1,12 +1,5 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: version.rb 118 2009-02-09 08:11:07Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  class Kagemusha #:nodoc:
8
- VERSION = "0.0.9"
4
+ VERSION = "0.1.0"
9
5
  end
10
-
11
- #==============================================================================#
12
- #==============================================================================#
@@ -4,9 +4,9 @@ Gem::Specification.new do |s|
4
4
  s.required_rubygems_version = Gem::Requirement.new(">= 0")
5
5
  s.required_ruby_version = Gem::Requirement.new(">= 1.8.6")
6
6
 
7
- s.name = "kagemusha"
8
- s.version = "0.0.9"
9
- s.date = "2009-06-29"
7
+ s.name = "nayutaya-kagemusha"
8
+ s.version = "0.1.0"
9
+ s.date = "2009-10-27"
10
10
 
11
11
  s.authors = ["Yuya Kato"]
12
12
  s.email = "yuyakato@gmail.com"
@@ -28,8 +28,6 @@ Gem::Specification.new do |s|
28
28
  "examples/time.rb",
29
29
  "HISTORY",
30
30
  "HISTORY.ja",
31
- "kagemusha.gemspec",
32
- "kagemusha.gemspec.erb",
33
31
  "lib/kagemusha/composite.rb",
34
32
  "lib/kagemusha/core.rb",
35
33
  "lib/kagemusha/date.rb",
@@ -39,6 +37,8 @@ Gem::Specification.new do |s|
39
37
  "lib/kagemusha/version.rb",
40
38
  "lib/kagemusha.rb",
41
39
  "LICENSE",
40
+ "nayutaya-kagemusha.gemspec",
41
+ "nayutaya-kagemusha.gemspec.erb",
42
42
  "Rakefile",
43
43
  "README",
44
44
  "README.ja",
@@ -4,7 +4,7 @@ Gem::Specification.new do |s|
4
4
  s.required_rubygems_version = Gem::Requirement.new(">= 0")
5
5
  s.required_ruby_version = Gem::Requirement.new(">= 1.8.6")
6
6
 
7
- s.name = "kagemusha"
7
+ s.name = "nayutaya-kagemusha"
8
8
  s.version = <%= version.dump %>
9
9
  s.date = <%= date.dump %>
10
10
 
data/test/test_bugs.rb CHANGED
@@ -1,13 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: test_bugs.rb 114 2009-02-09 07:52:26Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.dirname(__FILE__) + "/test_helper.rb"
8
4
 
9
- #==============================================================================#
10
-
11
5
  class TestBugs < Test::Unit::TestCase
12
6
  # MEMO:
13
7
  # * rubyneko - KagemushaとActiveRecordの不具合
@@ -111,6 +105,3 @@ class TestBugs < Test::Unit::TestCase
111
105
  assert(1, Integer("1"))
112
106
  end
113
107
  end
114
-
115
- #==============================================================================#
116
- #==============================================================================#
@@ -1,13 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: test_complex_cases.rb 115 2009-02-09 07:58:44Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.dirname(__FILE__) + "/test_helper.rb"
8
4
 
9
- #==============================================================================#
10
-
11
5
  class TestComplexCases < Test::Unit::TestCase
12
6
  module M1
13
7
  def m1_instance
@@ -778,6 +772,3 @@ class TestComplexCases < Test::Unit::TestCase
778
772
  }
779
773
  end
780
774
  end
781
-
782
- #==============================================================================#
783
- #==============================================================================#
@@ -1,14 +1,8 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: test_composite.rb 108 2009-02-09 06:04:39Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.dirname(__FILE__) + "/test_helper.rb"
8
4
  require "date"
9
5
 
10
- #==============================================================================#
11
-
12
6
  class TestComposite < Test::Unit::TestCase
13
7
  def setup
14
8
  @com = Kagemusha::Composite.new
@@ -102,6 +96,3 @@ class TestComposite < Test::Unit::TestCase
102
96
  assert_not_equal(:today, Date.today)
103
97
  end
104
98
  end
105
-
106
- #==============================================================================#
107
- #==============================================================================#
data/test/test_date.rb CHANGED
@@ -1,14 +1,8 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: test_date.rb 108 2009-02-09 06:04:39Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.dirname(__FILE__) + "/test_helper.rb"
8
4
  require File.dirname(__FILE__) + "/../lib/kagemusha/date"
9
5
 
10
- #==============================================================================#
11
-
12
6
  class TestKagemushaDate < Test::Unit::TestCase
13
7
  def setup
14
8
  end
@@ -39,6 +33,3 @@ class TestKagemushaDate < Test::Unit::TestCase
39
33
  assert_equal(1, ret)
40
34
  end
41
35
  end
42
-
43
- #==============================================================================#
44
- #==============================================================================#
@@ -1,16 +1,10 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: test_datetime.rb 108 2009-02-09 06:04:39Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.dirname(__FILE__) + "/test_helper.rb"
8
4
  require File.dirname(__FILE__) + "/../lib/kagemusha/date"
9
5
  require File.dirname(__FILE__) + "/../lib/kagemusha/time"
10
6
  require File.dirname(__FILE__) + "/../lib/kagemusha/datetime"
11
7
 
12
- #==============================================================================#
13
-
14
8
  class TestKagemushaDateTime < Test::Unit::TestCase
15
9
  def setup
16
10
  end
@@ -49,6 +43,3 @@ class TestKagemushaDateTime < Test::Unit::TestCase
49
43
  assert_equal(1, ret)
50
44
  end
51
45
  end
52
-
53
- #==============================================================================#
54
- #==============================================================================#
data/test/test_helper.rb CHANGED
@@ -1,11 +1,19 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: test_helper.rb 110 2009-02-09 07:20:20Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require "test/unit"
8
- require File.dirname(__FILE__) + "/../lib/kagemusha"
4
+ require "rubygems"
5
+
6
+ begin
7
+ require "redgreen"
8
+ rescue LoadError
9
+ # nop
10
+ end
11
+
12
+ begin
13
+ require "win32console" if /win32/ =~ RUBY_PLATFORM
14
+ rescue LoadError
15
+ # nop
16
+ end
9
17
 
10
- #==============================================================================#
11
- #==============================================================================#
18
+ $:.unshift(File.dirname(__FILE__) + "/../lib")
19
+ require "kagemusha"
@@ -1,13 +1,7 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: test_kagemusha.rb 108 2009-02-09 06:04:39Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.dirname(__FILE__) + "/test_helper.rb"
8
4
 
9
- #==============================================================================#
10
-
11
5
  class TestKagemusha < Test::Unit::TestCase
12
6
  def setup
13
7
  @musha = Kagemusha.new(String)
@@ -252,6 +246,3 @@ class TestKagemusha < Test::Unit::TestCase
252
246
  assert_equal([musha3, com1], com2.mocks)
253
247
  end
254
248
  end
255
-
256
- #==============================================================================#
257
- #==============================================================================#
data/test/test_rand.rb CHANGED
@@ -1,14 +1,8 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: test_rand.rb 108 2009-02-09 06:04:39Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.dirname(__FILE__) + "/test_helper.rb"
8
4
  require File.dirname(__FILE__) + "/../lib/kagemusha/rand"
9
5
 
10
- #==============================================================================#
11
-
12
6
  class TestKagemushaRand < Test::Unit::TestCase
13
7
  def setup
14
8
  end
@@ -43,6 +37,3 @@ class TestKagemushaRand < Test::Unit::TestCase
43
37
  assert_equal(1, ret)
44
38
  end
45
39
  end
46
-
47
- #==============================================================================#
48
- #==============================================================================#
data/test/test_time.rb CHANGED
@@ -1,14 +1,8 @@
1
1
  # coding: utf-8
2
2
 
3
- #==============================================================================#
4
- # $Id: test_time.rb 108 2009-02-09 06:04:39Z yuyakato $
5
- #==============================================================================#
6
-
7
3
  require File.dirname(__FILE__) + "/test_helper.rb"
8
4
  require File.dirname(__FILE__) + "/../lib/kagemusha/time"
9
5
 
10
- #==============================================================================#
11
-
12
6
  class TestKagemushaTime < Test::Unit::TestCase
13
7
  def setup
14
8
  end
@@ -39,6 +33,3 @@ class TestKagemushaTime < Test::Unit::TestCase
39
33
  assert_equal(1, ret)
40
34
  end
41
35
  end
42
-
43
- #==============================================================================#
44
- #==============================================================================#
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nayutaya-kagemusha
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Yuya Kato
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-06-29 00:00:00 -07:00
12
+ date: 2009-10-27 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies: []
15
15
 
@@ -30,8 +30,6 @@ files:
30
30
  - examples/time.rb
31
31
  - HISTORY
32
32
  - HISTORY.ja
33
- - kagemusha.gemspec
34
- - kagemusha.gemspec.erb
35
33
  - lib/kagemusha/composite.rb
36
34
  - lib/kagemusha/core.rb
37
35
  - lib/kagemusha/date.rb
@@ -41,6 +39,8 @@ files:
41
39
  - lib/kagemusha/version.rb
42
40
  - lib/kagemusha.rb
43
41
  - LICENSE
42
+ - nayutaya-kagemusha.gemspec
43
+ - nayutaya-kagemusha.gemspec.erb
44
44
  - Rakefile
45
45
  - README
46
46
  - README.ja
@@ -53,8 +53,10 @@ files:
53
53
  - test/test_kagemusha.rb
54
54
  - test/test_rand.rb
55
55
  - test/test_time.rb
56
- has_rdoc: false
56
+ has_rdoc: true
57
57
  homepage: http://github.com/nayutaya/kagemusha/
58
+ licenses: []
59
+
58
60
  post_install_message:
59
61
  rdoc_options: []
60
62
 
@@ -75,7 +77,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
77
  requirements: []
76
78
 
77
79
  rubyforge_project:
78
- rubygems_version: 1.2.0
80
+ rubygems_version: 1.3.5
79
81
  signing_key:
80
82
  specification_version: 2
81
83
  summary: kagemusha