Skip to content

Commit

Permalink
Add logger gem and enhance functional test setup in Rakefile
Browse files Browse the repository at this point in the history
Signed-off-by: HAHWUL <[email protected]>
  • Loading branch information
hahwul committed Feb 5, 2025
1 parent 298772b commit c4f2299
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@ source 'https://rubygems.org'
gem 'aruba', '~> 2.3'
gem 'rake', '~> 13.0'
gem 'rspec'
gem 'logger'
2 changes: 2 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ GEM
ffi (1.17.1-x86_64-darwin)
ffi (1.17.1-x86_64-linux-gnu)
ffi (1.17.1-x86_64-linux-musl)
logger (1.6.5)
mini_mime (1.1.5)
multi_test (1.1.0)
rake (13.2.1)
Expand Down Expand Up @@ -82,6 +83,7 @@ PLATFORMS

DEPENDENCIES
aruba (~> 2.3)
logger
rake (~> 13.0)
rspec

Expand Down
6 changes: 6 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,14 @@ namespace :docs do
end

namespace :test do
desc 'Set up the test environment for functional tests'
task :functional_setup do
sh 'go build .'
end

desc 'Run the functional tests'
task :functional do
Rake::Task['test:functional_setup'].invoke
sh 'rspec'
end

Expand Down

0 comments on commit c4f2299

Please sign in to comment.