操作
バグ #616
完了mikutterのweb image loaderのtestが環境依存になっている
プラグイン名:
ブランチ:
クラッシュする:
説明
具体的にはこの部分
diff --git a/test/core/test_web_image_loader.rb b/test/core/test_web_image_loade r.rb index fbdca34..f6c4857 100644 --- a/test/core/test_web_image_loader.rb +++ b/test/core/test_web_image_loader.rb @@ -150,7 +150,7 @@ class TC_GtkWebImageLoader < Test::Unit::TestCase WebMock.stub_request(:get, url).to_return(File.open(ICON_TEST){ |io| io.r ead }) localpath = Gdk::WebImageLoader.local_path(url) }.join - assert_equal("/home/toshi/.mikutter/tmp/e9183b9265dcf0728fceceb07444e8c1.pn g.png", localpath) + assert_equal("#{ENV["HOME"]}/.mikutter/tmp/e9183b9265dcf0728fceceb07444e8c1 .png.png", localpath) end must "is local path" do
~/.mikutterの指す位置はアカウントごとに異なっていいはずです。
ファイル
toshi_a 初音 さんが約11年前に更新
- トラッカー を 環境対応 から バグ に変更
仰るとおりです。ただし、mikutterには.mikutterの位置を指定する機能が有りますが、テストではこれを指定する手段がありません。なので、提案されたパッチとほぼ同等の変更になると思います。
toshi_a 初音 さんが10年以上前に更新
- ステータス を 新規 から 様子見 に変更
- プラグイン名 を削除 (
test_image_loader.rb)
遅くなりましたが対応しました。念の為、近いうちに他の環境で試してみてうまくいけば対応完了とします。
操作