<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Disqus - Latest Comments for billehunt</title><link>http://disqus.com/by/billehunt/</link><description></description><atom:link href="http://disqus.com/billehunt/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Wed, 17 Oct 2012 11:40:21 -0000</lastBuildDate><item><title>Re: Codeception Q&amp;A Collection of symfony framework tools - Symfohub: useful libs for symfony frameworks</title><link>http://codeception.com/qa#comment-685291145</link><description>&lt;p&gt;I just realized that I wasn't clear above: I wasn't actually working with CodeIgniter. In the above issue, my "framework" was a file index.php with the content "echo 'Live a LongLife'". I.e. I can't get the stock framework example from the docs, with the Universal client to work.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Wed, 17 Oct 2012 11:40:21 -0000</pubDate></item><item><title>Re: Codeception Q&amp;A Collection of symfony framework tools - Symfohub: useful libs for symfony frameworks</title><link>http://codeception.com/qa#comment-684867775</link><description>&lt;p&gt;Argh, I'm totally lost trying to integrate to Codeigniter. I'll leave out all the Codeigniter stuff (plenty of ugliness there) and start with this:&lt;/p&gt;&lt;p&gt;I create the suggested helper class:&lt;br&gt;client = new \Codeception\Util\Connector\Universal();&lt;br&gt;        $this-&amp;gt;client-&amp;gt;setIndex('index.php');&lt;br&gt;    }     &lt;br&gt;}&lt;br&gt;?&amp;gt;Now I try a simple test:&lt;/p&gt;&lt;p&gt;amOnPage('/');$I-&amp;gt;see('Live a LongLife');?&amp;gt;&lt;/p&gt;&lt;p&gt;But the test fails, claiming there is no $this-&amp;gt;client available to Framework.php:&lt;/p&gt;&lt;p&gt;C:\wamp\www\longlife&amp;gt;php codecept run functionalCodeception PHP Testing Framework v1.1.4Powered by PHPUnit 3.6.10 by Sebastian Bergmann.Suite functional startedRunning SignUpCept.php - OkRunning SiteComesUpCept.phpPHP Fatal error:  Call to a member function request() on a non-object in C:\wamp\www\longlife\src\Codeception\Util\Framework.php on line 29PHP Stack trace:PHP   1. {main}() C:\wamp\www\longlife\codecept:0PHP   2. Symfony\Component\Console\Application-&amp;gt;run() C:\wamp\www\longlife\codecept:31PHP   3. Symfony\Component\Console\Application-&amp;gt;doRun() C:\wamp\www\longlife\vendor\symfony\console\Symfony\Component\Console\Application.php:106PHP   4. Symfony\Component\Console\Command\Command-&amp;gt;run() C:\wamp\www\longlife\vendor\symfony\console\Symfony\Component\Console\Application.php:193PHP   5. Codeception\Command\Run-&amp;gt;execute() C:\wamp\www\longlife\vendor\symfony\console\Symfony\Component\Console\Command\Command.php:239PHP   6. Codeception\Codecept-&amp;gt;runSuite() C:\wamp\www\longlife\src\Codeception\Command\Run.php:62PHP   7. Codeception\SuiteManager-&amp;gt;run() C:\wamp\www\longlife\src\Codeception\Codecept.php:99PHP   8. Codeception\PHPUnit\Runner-&amp;gt;doEnhancedRun() C:\wamp\www\longlife\src\Codeception\SuiteManager.php:158PHP   9. PHPUnit_Framework_TestSuite-&amp;gt;run() C:\wamp\www\longlife\src\Codeception\PHPUnit\Runner.php:114PHP  10. PHPUnit_Framework_TestSuite-&amp;gt;runTest() C:\wamp\www\longlife\vendor\EHER\PHPUnit\src\phpunit\PHPUnit\Framework\TestSuite.php:745PHP  11. PHPUnit_Framework_TestCase-&amp;gt;run() C:\wamp\www\longlife\vendor\EHER\PHPUnit\src\phpunit\PHPUnit\Framework\TestSuite.php:772PHP  12. PHPUnit_Framework_TestResult-&amp;gt;run() C:\wamp\www\longlife\vendor\EHER\PHPUnit\src\phpunit\PHPUnit\Framework\TestCase.php:751PHP  13. PHPUnit_Framework_TestCase-&amp;gt;runBare() C:\wamp\www\longlife\vendor\EHER\PHPUnit\src\phpunit\PHPUnit\Framework\TestResult.php:649PHP  14. PHPUnit_Framework_TestCase-&amp;gt;runTest() C:\wamp\www\longlife\vendor\EHER\PHPUnit\src\phpunit\PHPUnit\Framework\TestCase.php:804PHP  15. ReflectionMethod-&amp;gt;invokeArgs() C:\wamp\www\longlife\vendor\EHER\PHPUnit\src\phpunit\PHPUnit\Framework\TestCase.php:942PHP  16. Codeception\TestCase\Cept-&amp;gt;testCodecept() C:\wamp\www\longlife\vendor\EHER\PHPUnit\src\phpunit\PHPUnit\Framework\TestCase.php:942PHP  17. require() C:\wamp\www\longlife\src\Codeception\TestCase\Cept.php:95PHP  18. TestGuy-&amp;gt;amOnPage() C:\wamp\www\longlife\tests\functional\SiteComesUpCept.php:8PHP  19. Codeception\Scenario-&amp;gt;runStep() C:\wamp\www\longlife\tests\functional\TestGuy.php:38PHP  20. Codeception\TestCase-&amp;gt;runStep() C:\wamp\www\longlife\src\Codeception\Scenario.php:64PHP  21. call_user_func_array() C:\wamp\www\longlife\src\Codeception\TestCase.php:43PHP  22. Codeception\Util\Framework-&amp;gt;amOnPage() C:\wamp\www\longlife\src\Codeception\TestCase.php:43Fatal error: Call to a member function request() on a non-object in C:\wamp\www\longlife\src\Codeception\Util\Framework.php on line 29&lt;/p&gt;&lt;p&gt;In Framework.php, I look at $this-&amp;gt;client, and see it's NULL:&lt;/p&gt;&lt;p&gt;	public function amOnPage($page)	{		var_dump($this-&amp;gt;client); exit;		$this-&amp;gt;crawler = $this-&amp;gt;client-&amp;gt;request('GET', $page);		$this-&amp;gt;debugResponse();	}&lt;/p&gt;&lt;p&gt;I tried tweaking the namespaces in various places but that didn't fix.&lt;/p&gt;&lt;p&gt;At first, I thought maybe amOnPage wasn't supported, but even if that's the case, why isn't $client available? Also, using Universal client, what exactly is supported?&lt;/p&gt;&lt;p&gt;Thanks&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Tue, 16 Oct 2012 23:46:44 -0000</pubDate></item><item><title>Re: Codeception Q&amp;A Collection of symfony framework tools - Symfohub: useful libs for symfony frameworks</title><link>http://codeception.com/qa#comment-679391310</link><description>&lt;p&gt;re-installed using composer.&lt;/p&gt;&lt;p&gt;Running vendor\bin\codecept.bat gives the following error:&lt;br&gt;(other packages run fine, including phpunit)&lt;/p&gt;&lt;p&gt;C:\wamp\www\longlife&amp;gt;vendor\bin\codeceptPHP Warning:  require_once(C:\wamp\www\longlife\vendor\Codeception\Codeception/vendor/composer/autoload_namespaces.php): failed to open stream: No such file ordirectory in C:\wamp\www\longlife\vendor\Codeception\Codeception\autoload.php on line 5PHP Stack trace:PHP   1. {main}() C:\wamp\www\longlife\vendor\Codeception\Codeception\codecept:0PHP   2. require_once() C:\wamp\www\longlife\vendor\Codeception\Codeception\codecept:12Warning: require_once(C:\wamp\www\longlife\vendor\Codeception\Codeception/vendor/composer/autoload_namespaces.php): failed to open stream: No such file or directory in C:\wamp\www\longlife\vendor\Codeception\Codeception\autoload.php on line 5Call Stack:    0.0017     242248   1. {main}() C:\wamp\www\longlife\vendor\Codeception\Codeception\codecept:0    0.0032     264824   2. require_once('C:\wamp\www\longlife\vendor\Codeception\Codeception\autoload.php') C:\wamp\www\longlife\vendor\Codeception\Codeception\codecept:12PHP Fatal error:  require_once(): Failed opening required 'C:\wamp\www\longlife\vendor\Codeception\Codeception/vendor/composer/autoload_namespaces.php' (include_path='.;C:\php\pear') in C:\wamp\www\longlife\vendor\Codeception\Codeception\autoload.php on line 5PHP Stack trace:PHP   1. {main}() C:\wamp\www\longlife\vendor\Codeception\Codeception\codecept:0PHP   2. require_once() C:\wamp\www\longlife\vendor\Codeception\Codeception\codecept:12Fatal error: require_once(): Failed opening required 'C:\wamp\www\longlife\vendor\Codeception\Codeception/vendor/composer/autoload_namespaces.php' (include_path='.;C:\php\pear') in C:\wamp\www\longlife\vendor\Codeception\Codeception\autoload.php on line 5Call Stack:    0.0017     242248   1. {main}() C:\wamp\www\longlife\vendor\Codeception\Codeception\codecept:0    0.0032     264824   2. require_once('C:\wamp\www\longlife\vendor\Codeception\Codeception\autoload.php') C:\wamp\www\longlife\vendor\Codeception\Codeception\codecept:12&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Thu, 11 Oct 2012 19:47:14 -0000</pubDate></item><item><title>Re: Codeception Q&amp;A Collection of symfony framework tools - Symfohub: useful libs for symfony frameworks</title><link>http://codeception.com/qa#comment-679347677</link><description>&lt;p&gt;Is there any difference between the "Guys" other than their config files? More specifically, is the purpose of "Guys" to have some pre-canned modules available for each?&lt;/p&gt;&lt;p&gt;From reading the site, I understand the "TestGuy" is really for use with Frameworks, which would be super valuable to me (with Codeigniter), but since I can't figure that out yet, is there any reason I shouldn't be implementing tests with "WebGuy", but using the modules from "TestGuy"?&lt;/p&gt;&lt;p&gt;Really liking Codeception so far, btw. I wrote you earlier, bummed that you required PHPTest, which is an awesome package, but required Pear (which is one of the ugliest things in the world, and later you should ask me what I really think of it). Love how you've built PHPUnit in.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Thu, 11 Oct 2012 18:22:26 -0000</pubDate></item><item><title>Re: Codeception Q&amp;A Collection of symfony framework tools - Symfohub: useful libs for symfony frameworks</title><link>http://codeception.com/qa#comment-679344828</link><description>&lt;p&gt;Got it! After changing acceptance.suite.yml (specifically, after adding the Db module), I needed to rebuild WebGuy. Is this the correct procedure? I.e. anytime I change a config, I need to rebuild the Guy?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Thu, 11 Oct 2012 18:17:09 -0000</pubDate></item><item><title>Re: Codeception Q&amp;A Collection of symfony framework tools - Symfohub: useful libs for symfony frameworks</title><link>http://codeception.com/qa#comment-679338456</link><description>&lt;p&gt;ugh that didn't format well. Sorry; let me know if not clear and I'll make it available elsewhere.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Thu, 11 Oct 2012 18:05:43 -0000</pubDate></item><item><title>Re: Codeception Q&amp;A Collection of symfony framework tools - Symfohub: useful libs for symfony frameworks</title><link>http://codeception.com/qa#comment-679337635</link><description>&lt;p&gt;Trying to use seeInDatabase, but I get Runtime exception "Call to undefined method WebGuy::seeInDatabase".&lt;/p&gt;&lt;p&gt;Db is configured properly in codeception.yml (proof: data is properly loaded at runtime from tests/_data)&lt;br&gt;I added Db to modules in acceptance.suite.yml:&lt;br&gt;class_name: WebGuymodules:    enabled:        - PhpBrowser        - WebHelper        - Db    config:        PhpBrowser:            url: 'http://localhost/testing/'&lt;br&gt;Here's the line that fails:&lt;br&gt;$I-&amp;gt;seeInDatabase('users', array(	'first' =&amp;gt; 'First',	'last' =&amp;gt; 'Last',	'email' =&amp;gt; 'first@last.com',	'birthday' =&amp;gt; '12/5/1982',	'gender' =&amp;gt; 'male',	'admin' =&amp;gt; 0,	'active' =&amp;gt; 0));Any ideas?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Thu, 11 Oct 2012 18:04:11 -0000</pubDate></item><item><title>Re: Codeception Q&amp;A Collection of symfony framework tools - Symfohub: useful libs for symfony frameworks</title><link>http://codeception.com/qa#comment-679256757</link><description>&lt;p&gt;Hey, has anyone integrated with Codeigniter? I read the docs and dug in a bit, but am really not sure where to start. I'm pretty familiar with CI, but not Codeception.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Thu, 11 Oct 2012 15:55:33 -0000</pubDate></item><item><title>Re: What This Higgs Boson Thing Really Means</title><link>http://www.theatlantic.com/national/archive/2012/07/what-this-higgs-boson-thing-really-means/259438/#comment-576665237</link><description>&lt;p&gt;Atlantic: "Write us an article about this Higgs Boson thing". &lt;br&gt;Writer above who's name I won't bother scrolling up to find out: "Sure thing. Of course, I have no idea what it is, and don't want spend any time finding out. Where's my check?"&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Thu, 05 Jul 2012 01:41:25 -0000</pubDate></item><item><title>Re: Codeception Q&amp;A Collection of symfony framework tools - Symfohub: useful libs for symfony frameworks</title><link>http://codeception.com/qa#comment-485664582</link><description>&lt;p&gt;Hey Davert, The issue is that I've literally only seen pear work once in some old Fedora version, and that was incredibly un-smooth. Later versions of Fedora I've been unable to make it go. Pear sure is a great concept, but I've completely given up on using it or any package in it. That includes phpunit, which is truly awesome, thus truly heart-breaking. I've seen some descriptions of a pear-less phpunit install, and will love to try them, but haven't found time. So for now I use my own home-grown unit test frame work. Unfortunately, I'm assuming that your kind offer to build a composer package of Codeception will still require a pear phpunit install? Afraid I just can't do that. Interesting note: Googling for "phpunit" returns 262k results. Googling "phpunit without pear" returns 275k results.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Wed, 04 Apr 2012 04:50:34 -0000</pubDate></item><item><title>Re: Codeception Q&amp;A Collection of symfony framework tools - Symfohub: useful libs for symfony frameworks</title><link>http://codeception.com/qa#comment-474031007</link><description>&lt;p&gt;Sure looks cool. Was really disappointed to find it requires Pear. Afraid that's a killer for me.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Thu, 22 Mar 2012 18:45:57 -0000</pubDate></item><item><title>Re: Why I&amp;#8217;m Stopping Out Of Stanford and Applying For The Thiel 20 Under 20 Fellowship</title><link>https://www.maxmarmer.com/blog/why-im-stopping-out-of-stanford-and-applying-for-the-thiel-20-under-20-fellowship/#comment-123074837</link><description>&lt;p&gt;Good luck, my friend. You're an ideal candidate for this, bright, driven, entrepreneurial and yearning to change the world.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Sun, 02 Jan 2011 04:46:43 -0000</pubDate></item><item><title>Re: An Exercise in Species Barcoding</title><link>http://norvig.com/ibol.html#comment-6228600</link><description>&lt;p&gt;Awesome analysis!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">billehunt</dc:creator><pubDate>Thu, 12 Feb 2009 20:07:45 -0000</pubDate></item></channel></rss>