5

Symfony2 バンドル (ver 2.2.2) 内の Behat (2.4.*@dev) init プロセスに問題があります。コマンドの後:

bin/behat --init "@CompanyAppBundle"

behat ディレクトリは、バンドル内ではなく、アプリケーションのルート ディレクトリ内に作成されます。出力は次のとおりです。

+d features - place your *.feature files here
+d features/bootstrap - place bootstrap scripts and static files here
+f features/bootstrap/FeatureContext.php - place your feature related code here

問題はどこだ?

4

2 に答える 2

0

Behat が設定を見つけられないか、次のように指定してみてください。

bin/behat -c alternative/location/to/behat.yml --init "@CompanyAppBundle"

または、(デフォルトの) 構成で Symfony2Extension を有効にしていない場合は、次のように指定してみてください:

default:
    extensions:
        Behat\Symfony2Extension\Extension:
于 2014-02-03T09:20:53.563 に答える