エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
For loop in serverspec
I have this Spec file: require 'spec_helper' for i in 1..3 describe file ("/var/tmp/efl_test_0#{i... I have this Spec file: require 'spec_helper' for i in 1..3 describe file ("/var/tmp/efl_test_0#{i}_link" )do it { should be_linked_to "/tmp/efl_test_0#{i}" } end end The expected results are: /var/tmp/efl_test01_link should be_linke_to /tmp/efl_test01 /var/tmp/efl_test02_link should be_linke_to /tmp/efl_test02 /var/tmp/efl_test03_link should be_linke_to /tmp/efl_test03 The actual results are: Fail