Skip to content

Require pathname module #536

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 17, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Require pathname module
... otherwise the test fails with:

TestWorktree:
  test_worktree_add_and_remove:				.: (0.080734)
  test_worktree_prune:					.: (0.055268)
  test_worktrees_all:					.: (0.037409)
  test_worktrees_single:				E
===============================================================================
Error: test_worktrees_single(TestWorktree): NameError: uninitialized constant TestWorktree::Pathname
/<<PKGBUILDDIR>>/tests/units/test_worktree.rb:51:in `test_worktrees_single'
     48:
     49:   def test_worktrees_single
     50:     worktree = @git.worktrees.first
  => 51:     git_dir = Pathname.new(@git.dir.to_s).realpath.to_s
     52:     assert_equal(worktree.dir, git_dir)
     53:     assert_equal(worktree.gcommit, SAMPLE_LAST_COMMIT)
     54:   end
===============================================================================
: (0.041215)

Signed-off-by: Daniel Leidert <daniel.leidert@wgdd.de>
  • Loading branch information
dleidert committed Sep 10, 2021
commit 93476bae8557de7ae941cdb218d4ce7cfcf25f77
1 change: 1 addition & 0 deletions tests/units/test_worktree.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env ruby
require 'fileutils'
require 'pathname'
require File.dirname(__FILE__) + '/../test_helper'

SAMPLE_LAST_COMMIT = '5e53019b3238362144c2766f02a2c00d91fcc023'
Expand Down