smartest 0.1.0.alpha1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +16 -0
- data/DEVELOPMENT.md +774 -0
- data/Gemfile +5 -0
- data/LICENSE +21 -0
- data/README.md +518 -0
- data/Rakefile +12 -0
- data/SMARTEST_DESIGN.md +1137 -0
- data/exe/smartest +63 -0
- data/lib/smartest/autorun.rb +8 -0
- data/lib/smartest/dsl.rb +22 -0
- data/lib/smartest/errors.rb +52 -0
- data/lib/smartest/execution_context.rb +8 -0
- data/lib/smartest/expectation_target.rb +21 -0
- data/lib/smartest/expectations.rb +9 -0
- data/lib/smartest/fixture.rb +78 -0
- data/lib/smartest/fixture_class_registry.rb +27 -0
- data/lib/smartest/fixture_definition.rb +31 -0
- data/lib/smartest/fixture_set.rb +119 -0
- data/lib/smartest/init_generator.rb +70 -0
- data/lib/smartest/matchers.rb +109 -0
- data/lib/smartest/parameter_extractor.rb +51 -0
- data/lib/smartest/reporter.rb +91 -0
- data/lib/smartest/runner.rb +80 -0
- data/lib/smartest/suite.rb +12 -0
- data/lib/smartest/test_case.rb +18 -0
- data/lib/smartest/test_registry.rb +25 -0
- data/lib/smartest/test_result.rb +43 -0
- data/lib/smartest/version.rb +5 -0
- data/lib/smartest.rb +59 -0
- data/smartest/smartest_test.rb +634 -0
- data/smartest.gemspec +48 -0
- metadata +95 -0
metadata
ADDED
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: smartest
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.0.alpha1
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Yusuke Iwaki
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: exe
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2026-04-26 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rake
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - "~>"
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '13.0'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - "~>"
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '13.0'
|
|
27
|
+
description: Smartest is a small Ruby test runner focused on readable top-level tests,
|
|
28
|
+
explicit keyword-argument fixture dependencies, and optional fixture cleanup.
|
|
29
|
+
email:
|
|
30
|
+
executables:
|
|
31
|
+
- smartest
|
|
32
|
+
extensions: []
|
|
33
|
+
extra_rdoc_files: []
|
|
34
|
+
files:
|
|
35
|
+
- CHANGELOG.md
|
|
36
|
+
- DEVELOPMENT.md
|
|
37
|
+
- Gemfile
|
|
38
|
+
- LICENSE
|
|
39
|
+
- README.md
|
|
40
|
+
- Rakefile
|
|
41
|
+
- SMARTEST_DESIGN.md
|
|
42
|
+
- exe/smartest
|
|
43
|
+
- lib/smartest.rb
|
|
44
|
+
- lib/smartest/autorun.rb
|
|
45
|
+
- lib/smartest/dsl.rb
|
|
46
|
+
- lib/smartest/errors.rb
|
|
47
|
+
- lib/smartest/execution_context.rb
|
|
48
|
+
- lib/smartest/expectation_target.rb
|
|
49
|
+
- lib/smartest/expectations.rb
|
|
50
|
+
- lib/smartest/fixture.rb
|
|
51
|
+
- lib/smartest/fixture_class_registry.rb
|
|
52
|
+
- lib/smartest/fixture_definition.rb
|
|
53
|
+
- lib/smartest/fixture_set.rb
|
|
54
|
+
- lib/smartest/init_generator.rb
|
|
55
|
+
- lib/smartest/matchers.rb
|
|
56
|
+
- lib/smartest/parameter_extractor.rb
|
|
57
|
+
- lib/smartest/reporter.rb
|
|
58
|
+
- lib/smartest/runner.rb
|
|
59
|
+
- lib/smartest/suite.rb
|
|
60
|
+
- lib/smartest/test_case.rb
|
|
61
|
+
- lib/smartest/test_registry.rb
|
|
62
|
+
- lib/smartest/test_result.rb
|
|
63
|
+
- lib/smartest/version.rb
|
|
64
|
+
- smartest.gemspec
|
|
65
|
+
- smartest/smartest_test.rb
|
|
66
|
+
homepage: https://github.com/YusukeIwaki/smartest
|
|
67
|
+
licenses:
|
|
68
|
+
- MIT
|
|
69
|
+
metadata:
|
|
70
|
+
allowed_push_host: https://rubygems.org
|
|
71
|
+
bug_tracker_uri: https://github.com/YusukeIwaki/smartest/issues
|
|
72
|
+
documentation_uri: https://smartest-rb.vercel.app/
|
|
73
|
+
homepage_uri: https://github.com/YusukeIwaki/smartest
|
|
74
|
+
rubygems_mfa_required: 'true'
|
|
75
|
+
source_code_uri: https://github.com/YusukeIwaki/smartest/tree/main
|
|
76
|
+
post_install_message:
|
|
77
|
+
rdoc_options: []
|
|
78
|
+
require_paths:
|
|
79
|
+
- lib
|
|
80
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
81
|
+
requirements:
|
|
82
|
+
- - ">="
|
|
83
|
+
- !ruby/object:Gem::Version
|
|
84
|
+
version: '3.1'
|
|
85
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
86
|
+
requirements:
|
|
87
|
+
- - ">"
|
|
88
|
+
- !ruby/object:Gem::Version
|
|
89
|
+
version: 1.3.1
|
|
90
|
+
requirements: []
|
|
91
|
+
rubygems_version: 3.4.19
|
|
92
|
+
signing_key:
|
|
93
|
+
specification_version: 4
|
|
94
|
+
summary: A small Ruby test runner with keyword-first fixtures.
|
|
95
|
+
test_files: []
|