ConfigTest.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php namespace Laravel; use PHPUnit_Framework_TestCase;
  2. class ConfigTest extends PHPUnit_Framework_TestCase {
  3. public function test_has_method_indicates_if_configuration_item_exists()
  4. {
  5. Config::set('hasvalue', true);
  6. $this->assertTrue(Config::has('hasvalue'));
  7. }
  8. public function test_has_method_returns_false_when_item_doesnt_exist()
  9. {
  10. $this->assertFalse(Config::has('something'));
  11. }
  12. public function test_config_get_can_retrieve_item_from_configuration()
  13. {
  14. $this->assertTrue(is_array(Config::get('application')));
  15. $this->assertEquals(Config::get('application.url'), 'http://localhost');
  16. }
  17. public function test_get_method_returns_default_when_requested_item_doesnt_exist()
  18. {
  19. $this->assertNull(Config::get('config.item'));
  20. $this->assertEquals(Config::get('config.item', 'test'), 'test');
  21. $this->assertEquals(Config::get('config.item', function() {return 'test';}), 'test');
  22. }
  23. public function test_config_set_can_set_configuration_items()
  24. {
  25. Config::set('application.names.test', 'test');
  26. Config::set('application.url', 'test');
  27. Config::set('session', array());
  28. Config::set('test', array());
  29. $this->assertEquals(Config::get('application.names.test'), 'test');
  30. $this->assertEquals(Config::get('application.url'), 'test');
  31. $this->assertEquals(Config::get('session'), array());
  32. $this->assertEquals(Config::get('test'), array());
  33. }
  34. }