mirror of
https://gitea.invidious.io/iv-org/shard-spectator.git
synced 2024-08-15 00:53:35 +00:00
Move classes under Spectator::Core
This commit is contained in:
parent
19ff4669ac
commit
38f61dc74e
3 changed files with 4 additions and 2 deletions
|
@ -1,3 +1,5 @@
|
||||||
|
require "./spectator/core/**"
|
||||||
|
|
||||||
# Feature-rich testing framework for Crystal inspired by RSpec.
|
# Feature-rich testing framework for Crystal inspired by RSpec.
|
||||||
module Spectator
|
module Spectator
|
||||||
# Current version of the Spectator library.
|
# Current version of the Spectator library.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
module Spectator
|
module Spectator::Core
|
||||||
# Information about a test case and functionality for running it.
|
# Information about a test case and functionality for running it.
|
||||||
class Example
|
class Example
|
||||||
# Name of the example.
|
# Name of the example.
|
|
@ -1,4 +1,4 @@
|
||||||
module Spectator
|
module Spectator::Core
|
||||||
# Information about a group of examples and functionality for running them.
|
# Information about a group of examples and functionality for running them.
|
||||||
# The group can be nested.
|
# The group can be nested.
|
||||||
class ExampleGroup
|
class ExampleGroup
|
Loading…
Reference in a new issue