Displaying 20 results from an estimated 3264 matches for "checkout".
2007 Nov 15
7
Plain Text Stories Chaining Scenarios
I''m writing a plain text story (testing the waters) and I have
scenarios that I need to chain in my specs.
Here is what I have so far:
Story: User purchasing tshirts
As a user
I want to checkout
So that I can purchase shirts
Scenario: User goes to checkout with nothing in cart
Given a user
And user has an empty cart
When user goes to checkout
Then user should see the page: site index
And page should include the text: you have nothing in your cart
Scenari...
2006 Oct 13
6
If I stub do I have to mock as well?
Hi, I''m new to mocha and stubba but eager to learn. I have a rails
functional test in which I would like to stub an instance method of
particular class to always return true. I tried the following:
def test_post_checkout
Order.any_instance.stubs(:successful?).returns(true)
post :checkout
assert_response :redirect
assert_equal "Checkout was successful.", flash[:notice]
end
I expected that the stub would help my test pass but instead it failed
and the failure included the following:...
2015 Sep 14
2
[PATCH 0/4] efi: Makefile improvement
...he Makefiles, including the 'git submodule update --init'.
So I didn't change any behavior in that regard. When you make directly
or indirectly the targets efi32 or efi64, the submodule is checked out
at the revision registered for the current syslinux commit.
Currently, if you want to checkout another revision of the submodule,
you can checkout it, and 'git add' it (no need to make a commit) so
that 'git submodule update --init' won't lose the revision you
carefully checked out.
But it's true, there's something about it. Having the Makefiles depend
on git is...
2004 Aug 06
3
Icecast2 documentation
I use the cvs version:
cvs -d :pserver:anonymous@cvs.icecast.org:/cvsroot login
cvs -d :pserver:anonymous@cvs.icecast.org:/cvsroot checkout ice2
cd ice2
cvs -d :pserver:anonymous@cvs.icecast.org:/cvsroot checkout avl
cvs -d :pserver:anonymous@cvs.icecast.org:/cvsroot checkout log
cvs -d :pserver:anonymous@cvs.icecast.org:/cvsroot checkout httpp
cvs -d :pserver:anonymous@cvs.icecast.org:/cvsroot checkout net
cvs -d :pserver:anonymous@cv...
2013 Jan 02
2
[LLVMdev] Slow SVN Checkouts
Is anyone else experiencing very slow SVN checkouts/updates? I've tried
from two separate networks now, and checkouts are 15+ minutes on both.
--
Thanks,
Justin Holewinski
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130102/46cbecca/attachment.htm...
2006 Apr 20
0
problem in "depot" app - cart contents not shown on checkout
...ring store/display_cart
Completed in 0.07763 (12 reqs/sec) | Rendering: 0.07472 (96%) | DB:
0.01042 (13%) | 200 OK [http://localhost/store/display_cart]
LineItem Columns (0.005253) SHOW FIELDS FROM line_items
Product Columns (0.078291) SHOW FIELDS FROM products
Processing StoreController#checkout (for 127.0.0.1 at 2006-04-20
02:02:18) [GET]
Session ID: 90352668088f989d5f939978b52b2a3a
Parameters: {"action"=>"checkout", "controller"=>"store"}
Order Columns (0.007546) SHOW FIELDS FROM orders
Rendering within layouts/store
Rendering store...
2012 Nov 29
11
[LLVMdev] Getting Started
...ting things:
LLVM Getting Started (See http://llvm.org/docs/GettingStarted.html)
./getttingStarted.sh [-clang] [-compiler-rt] [-test-suite] [-branch branch]
[-dir path] [-r rev]
By default this script checks out ToT LLVM to the current working directory
Project Options:
-clang Checkout Clang repo
-compiler-rt Checkout Compiler RT
-test-suite Checkout LLVM test-suite
Configuration Options:
-branch branch Checkout a specific branch, default trunk
-dir path Checkout to path instead of current working dir
-r rev Che...
2005 May 24
0
SVN checkout problem
Hello
I have problems with checkout using SVN. I am following instructions on
page http://us2.samba.org/samba/subversion.html.
First of all DNS can't resolve name svnanon.samba.org. I checked
nslookup and dig on three different systems using three different
providers - my office, T-Online and Litnet. DNS servers for all three
pr...
2006 Jan 15
1
You hava a nil object when you didn''t expect it!
...for that matter) and I''m us following the
tutorial in the Pragmatic
Programmer Agile Web Development with Rails book.
In chapter 9, Iteration D1: Capturing an order, I''ve added the code to
handle entry errors:
<%= error_messages_for(:order) %>
to the top of the checkout.rhtml file. Now when I press the checkout
link I get the following:
NoMethodError in
Store#checkout
Showing app/views/store/checkout.rhtml
where line #2 raised:
You have a nil object when you didn''t expect it!
You might have expected an instance of ActiveRecord::Base.
The error occu...
2014 Jul 04
2
[LLVMdev] Using git bisect with LLVM
...es to overcome prior to using git bisect. I thought I
would share them here, in the hope that they're useful for others.
The main difficulty was to check out the version of clang and compiler-rt
that would compile with a given LLVM revision. I used the following code in
the bisect script:
checkout() {
cd $LLVM_SRC
local committer_date="$(git log --pretty=format:%cd -n1 'HEAD')"
cd $LLVM_SRC/tools/clang
git checkout "$(git rev-list -n 1 --before="$committer_date"
origin/google/testing)"
cd $LLVM_SRC/projects/compile...
2016 Jul 22
4
[RFC] One or many git repositories?
...you switch between
>> branches, you want to get an llvm that's in sync with the clang in
>> your working copy.
>>
>> Here's how I'd do it with a monolithic git repository, option (b):
>>
>> git commit # old-branch
>> git fetch
>> git checkout -b new-branch origin/master
>> # hack hack hack
>> git commit # new-branch
>> git checkout old-branch
>>
>> Here's how I'd do it with option (a), submodules. I've used git -C
>> here to make it explicit which repo we're working in, but in r...
2016 Jul 20
11
[RFC] One or many git repositories?
.... Finally you want to
switch back to your original branch. And when you switch between
branches, you want to get an llvm that's in sync with the clang in
your working copy.
Here's how I'd do it with a monolithic git repository, option (b):
git commit # old-branch
git fetch
git checkout -b new-branch origin/master
# hack hack hack
git commit # new-branch
git checkout old-branch
Here's how I'd do it with option (a), submodules. I've used git -C
here to make it explicit which repo we're working in, but in real life
I'd probably use cd.
# First, commit...
2016 Jul 22
3
[RFC] One or many git repositories?
The build system can help, you just need to have two (sparse) checkout: one for LLVM/clang and the other for clang-tidy, and configure the build with the LLVM/clang checkout adding the clang-tidy as external.
—
Mehdi
> On Jul 22, 2016, at 1:22 PM, Piotr Padlewski via llvm-dev <llvm-dev at lists.llvm.org> wrote:
>
> And the same thing happen to IDEs...
2013 Jan 02
0
[LLVMdev] Slow SVN Checkouts
On Wed, Jan 2, 2013 at 7:01 AM, Justin Holewinski
<justin.holewinski at gmail.com> wrote:
> Is anyone else experiencing very slow SVN checkouts/updates? I've tried
> from two separate networks now, and checkouts are 15+ minutes on both.
>
> --
>
It could've been a temporary hiccup. Just updated and it was
reasonably fast (given the large changes from Chandler's header
renaming).
Eli
2014 Oct 31
3
[LLVMdev] Tree conflict on checkout
I am getting the following error while trying to checkout LLVM. I deleted
my local copy (no changes) just in case something was causing the issue,
but it didn't fix it.
Tree conflict on 'llvm\test\Bindings\Ocaml'
> local dir unversioned, incoming dir add upon update
Select: (r) mark resolved, (p) postpone, (q) quit resolution, (h) help...
2006 Apr 14
2
How to get 1.2.7 asterisk
Hi,
Does "cvs checkout asterisk" gets the later version of asterisk? I tried
"cvs checkout -r v1-2-7 asterisk", and didn't work for me. The only
thing works is "cvs checkout -r v1-2 asterisk". What exactly is version
tag for version 1.2.7? Thnx
2016 Jul 22
2
[RFC] One or many git repositories?
Can you please clarify your use of “cost” (bandwidth, disk space, extra command to type initially?),
Developer time, barrier to entry for new contributors. Getting the sparse-checkout business right looks like it is actually non-trivial and not recommended for the git novice. *Changing* the sparse-checkout configuration later appears to be fraught with peril (easy to get wrong).
The claim is to keep the existing history (I.e. not hash changes) that is currently at http://llvm....
2016 Jul 21
3
[RFC] One or many git repositories?
> Today I *can* checkout only LLVM and Clang. On a single Git repo I can't.
This is true if you s/checkout/clone/. With a single repo, you must
clone (download) everything (*), but after you've done so you can use
sparse checkouts to check out (create a working copy of) only llvm and
clang. So you should only no...
2009 Feb 07
3
[LLVMdev] Problem Running llvm-suite
Hi,
I'm trying to run the tests in llvm-suite, but I've run into trouble.
First, I had the llvm-suite checkout in a directory alongside the llvm
compiler checkout, but, when I ran "make" from llvm-suite, it complained
about there not being a Makefile two levels above it, so I moved
llvm-suite into the "test" subdirectory inside the llvm compiler
checkout. I ran "make" agai...
2006 May 30
5
Compiling Asterisk-addons
Did the following:
svn checkout http://svn.digium.com/svn/asterisk-addons/trunk asterisk-addons
svn checkout http://svn.digium.com/svn/asterisk/trunk asterisk
svn checkout http://svn.digium.com/svn/zaptel/trunk zaptel
svn checkout http://svn.digium.com/svn/libpri/trunk libpri
Compiled and installed zaptel, libpri, asterisk and f...