s...@ull.at
unread,Jul 5, 2014, 5:50:12 AM7/5/14Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to ullrigh...@googlegroups.com
Author: klemens
Date: 2014-07-05 11:50:10 +0200 (Sat, 05 Jul 2014)
New Revision: 4124
Modified:
trunk/plugins/ullCorePlugin/test/unit/ullGeneratorTest.php
Log:
Fixed test
Modified: trunk/plugins/ullCorePlugin/test/unit/ullGeneratorTest.php
===================================================================
--- trunk/plugins/ullCorePlugin/test/unit/ullGeneratorTest.php 2014-07-05 09:20:25 UTC (rev 4123)
+++ trunk/plugins/ullCorePlugin/test/unit/ullGeneratorTest.php 2014-07-05 09:50:10 UTC (rev 4124)
@@ -15,7 +15,7 @@
sfContext::getInstance()->getConfiguration()->loadHelpers('I18N');
sfContext::getInstance()->getRequest()->setParameter('action', 'list');
-$t = new myTestCase(12, new lime_output_color, $configuration);
+$t = new myTestCase(11, new lime_output_color, $configuration);
$path = sfConfig::get('sf_root_dir') . '/plugins/ullCorePlugin/data/fixtures/';
$t->setFixturesPath($path);
@@ -41,9 +41,10 @@
$t->diag('static function getDefaultCultures()');
- $t->is(array('en',), myGenerator::getDefaultCultures(), 'returns the correct culture');
- sfContext::getInstance()->getUser()->setCulture('de');
- $t->is(array('en', 'de'), myGenerator::getDefaultCultures(), 'returns the correct cultures');
+// Enhance this if we support more than 2 languages
+// $t->is(array('en'), myGenerator::getDefaultCultures(), 'returns the correct culture');
+// sfContext::getInstance()->getUser()->setCulture('de');
+ $t->is(array('de', 'en'), myGenerator::getDefaultCultures(), 'returns the correct cultures');
$t->diag('set/getAllowDelete()');