Skip to content
This repository has been archived by the owner on May 4, 2024. It is now read-only.

Commit

Permalink
Set up committer configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
floriandejonckheere committed Mar 31, 2024
1 parent 6b35a3c commit a6e535b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion spec/mosaik/extractors/evolution_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"App::Bar" => ["App::Foo"],
"App::Bat" => ["App::Baz", "App::Foo"],
"App::Bak" => ["App::Foo"],
"App::Baz" => ["App::Bat"]
"App::Baz" => ["App::Bat"],
)
end
end
Expand Down
4 changes: 4 additions & 0 deletions spec/support/shared_contexts/repository.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@
let(:configuration) { MOSAIK::Configuration.from(File.join(directory, "mosaik.yml")) }

before do
# Set up committer configuration
git.config("user.name", "Author 1")
git.config("user.email", "[email protected]")

# Setup the repository with initial commit
File.write(File.join(directory, "README.md"), "# Test Repository")
git.add
Expand Down

0 comments on commit a6e535b

Please sign in to comment.