Tagged Questions
The spec tag has no wiki summary.
15
votes
1answer
232 views
c++0x: resolving ambiguity between function-definition followed by empty-declaration and simple-declaration
I am having an issue with wrapping my head around an apparent ambiguity in the c++0x spec, see also: http://www.nongnu.org/hcb/
Assume we have the code
void foo() {};
Personally I interpret the ...
11
votes
15answers
1k views
What are your feelings on functional specs? And Software design?
Does the functional spec help or hinder your expectations? Do programmers who practice the waterfall methodology, are they open to functional specs? I'm a web designer/developer working with a team of ...
9
votes
3answers
184 views
Is modifying a value type from within a using statement undefined behavior?
This one's really an offshoot of this question, but I think it deserves its own answer.
According to section 15.13 of the ECMA-334 (on the using statement, below referred to as resource-acquisition):
...
9
votes
2answers
2k views
Rails rspec set subdomain
I am using rSpec for testing my application. In my application controller I have a method like so:
def set_current_account
@current_account ||= Account.find_by_subdomain(request.subdomains.first)
...
7
votes
2answers
504 views
Generating Missing Spec Files for RSpec
Is there any command available for generating all missing spec files for existing models / controllers? I have a project that has several models that have been generated with out spec files.
5
votes
3answers
105 views
attribute name “var” in javascript associative array
Quick question out of curiosity:
code below works in Firefox and Chrome but not in Safari. Is this Javascript spec circumvented by Firefox and Chrome or is this a quirk in Safari?
var a = {};
...
4
votes
1answer
314 views
HTML5 appcache manifest file extension
I read this line from HTML5 Boilerplate :
HTML Manifest files now use .appcache extension instead of .manifest,
as per http://html5.org/r/5812.
And I saw this from http://html5.org/r/5812
...
4
votes
3answers
242 views
Help! How to create a UI Tech Spec
Crap. I've been tasked to create a technical spec for a UI I am developing. This is my first real developer job, and after looking at the tech spec for the backend of the project, I feel a little in ...
3
votes
2answers
99 views
How to create Document objects with JavaScript
Basically that's the question, how is one supposed to construct a Document object dynamically in javascript?
3
votes
3answers
108 views
How to add an object file to every link
There is a bug in RHEL5's gcc-4.3.2 with which we are stuck. As a work-around we have extracted the missing object and put it in an object file. Adding this object file to every link makes the problem ...
3
votes
3answers
196 views
Does Go have an iterator datatype?
How do I write Go code that can do something like a map iterator in C++?
typedef std::map<std::string, MyStruct> MyMap;
MyMap::iterator it = myMap.find("key");
if(it!=myMap.end()) {
...
3
votes
1answer
120 views
strange characters ^M php can not identify
I open a file (saved as ISO 8859-1) using the terminal (Ubuntu) and see where new lines should be the following character ^M (surrounded by XX before and after).
Now, I run this code in php to see ...
3
votes
1answer
213 views
Default width/height of an IFrame
Is there any spec specifying the default width/height of an IFrame? Browsers I tested (FF,IE,Chrome) seem to use 300x150px but I couldn't find any spec on this. Should I ever come in the situation, ...
3
votes
4answers
97 views
Later OpenGL specs - more than shaders?
I've been programming OpenGL almost entirely in the 2 specification, and don't know much about the 3 and 4 specs.
I read on some forum that the later specs of OpenGL are basically just feeding data to ...
3
votes
1answer
342 views
Selenium Can't Find 'spec' Folder
So I'm attempting to set up my local system to help finish off an existing project from an employer who uses only rails. They want me to primarily focus on rspec testing as the project is nearly ...
3
votes
2answers
669 views
how to define a rpm spec macro with empty body?
the problem is quite easy to exhibit:
rpm --eval "%define xyz"
error: Macro %xyz has empty body
i want to get the patch_level and echo_dist may return sles11 or sles11sp1, for sle1s11 i just want ...
3
votes
1answer
373 views
Installing an empty directory with RPM
In my install section of my rpm Spec file I have a bunch of mkdir's to create the directories I need. The ones that don't have any files installed in them get pruned out in the end and don't end up ...
2
votes
1answer
30 views
Right Rails way to write RPSECs to test URL routing?
I have a app with this kind of setup:
User (id)
Room (id, private (boolean)
RoomMember(user_id, room_id, banned (boolean)
These are the use cases I want to write tests for:
If the room is not ...
2
votes
3answers
125 views
How can I get rid of the following warning: Problem while setting context on example startundefined local variable or method `selenium_driver'
Still making my first steps in Ruby (while dealing with some written code). I am getting the following warning each time I run spec (listed as is):
Problem while setting context on example ...
2
votes
5answers
61 views
Slight confusion over reference types and value types in the C# spec
I'm trying to digest this statement in the C# spec, which states (§4.2):
A reference type is a class type, an interface type, an array type, or a delegate type.
I know that structs can implement ...
2
votes
2answers
119 views
Need help trying to understand the OAuth2 Spec
The bearer token spec is the one I have a question about. I'm trying to figure out what characters are allowed in the token when placed in the Authorization: OAuth ...... header. Here's what the spec ...
2
votes
1answer
15 views
Browser updates against w3c spec's
I closely monitor w3c specs such as http://www.w3.org/TR/css3-animations/ and am implementing aspects of them as soon as functionality hits a majority of browsers, however I am looking for a resource ...
2
votes
2answers
118 views
OpenGL 4 adoption
Having only recently started learning the 'new' OpenGL (programmable as opposed to fix-function, I learned off the Nehe Tutorials), I'm wondering if learning OpenGL 3 is at all useful since OpenGL 4 ...
2
votes
2answers
522 views
distutils setup.py and %post %postun
I am newbie.
I am buidling rpm package for my own app and decided to use distutils to do achieve it. I managed to create some substitue of %post by using advice from this website, which i really am ...
1
vote
1answer
19 views
undefined method ascii_compatible? for Encoding:US-ASCII
I'm trying to run a simple test\spec but getting an error. Error is only happening when the tests fail.
begin
require 'rubygems'
require 'test/spec'
rescue LoadError
puts "==> you need ...
1
vote
0answers
33 views
How to test a super classes method throws an exception using rspec with Ruby
I am trying to find the best way of writing an rspec test that will spec the call to
mail(mail_content).deliver
and raise an exception so I can assert the Rails.logger is called.
I know you are not ...
1
vote
1answer
28 views
standardized conclusion required for rpm upgrade process
The rpm command provides three main operations for upgrading and installing packages:
Upgrade
An upgrade operation means installing a new version of a package and removing all previous versions of ...
1
vote
1answer
189 views
Rake spec fails with no error message
I have a Rails app that runs on Phusion+Apache in the following environment:
RHEL 5 x64
Ruby 1.9.2 p290 x64
Rails 3.0.4
Rake 0.9.2.2
I'm using and Oracle 11g database so I've also ...
1
vote
1answer
213 views
specs failing in Rails 3.1 - NoMethodError: private method 'rand' called for
I'm getting a weird error all of a sudden when I run my spec, which is then causing my specs to fail. These specs worked find before - but recently we upgraded from Rails 3.0 -> Rails 3.1. It seems ...
1
vote
1answer
19 views
Where can I find T611 and T612 parts of SQL standard (they both are related to OLAP)?
I've tried to find them in sql 2003 standard, downloaded from http://www.wiscorp.com/sql_2003_standard.zip , but it seems that there're only references in text to these items there.
Can anyone ...
1
vote
1answer
54 views
Tools for describing JSON schemas
I'm writing a spec and need to describe some JSON objects. Big JSONs tend to get too confusing with text and tabs alone. Is there any online (preferably) tool to create diagrams like the ones on ...
1
vote
1answer
60 views
How can you create a folder with PHP with special/wildcard characters?
I guess I have two questions actually:
One: How do I create folders with special/wildcard characters? (e.g. !@#$%^&*)
Two: How can I remove a folder created with those characters? I have two on ...
1
vote
3answers
294 views
Can HTTP PUT request have application/x-www-form-urlencoded as the Content-Type?
Is it valid if I need to send the form data in the HTTP PUT request?
If you could point me to a spec then that would be great.
[updating]
I have gone through the HTTP 1.1 spec. But I did not find ...
1
vote
3answers
93 views
Annoying RSPEC Error
Hey all,
My Rspec test fail with the error:
syntax error, unexpected kEND, expecting $end (SyntaxError)
I don't know why, my code is as follows (actual content removed via the arrows on the sidebar ...
1
vote
2answers
267 views
JSON duplicated properties validation via Jackson
I use Jackson and want to check that input JSON string doesn't contain duplicated properties like:
{"a" : 1, "a" : 0}
Following Jackson fragment process input string without any errors and even ...
1
vote
1answer
93 views
Modifying the compilation process with SPEC to use LLVM
I am currently working on running some llvm passes and would like to benchmark their usefulness using the SPEC 2006 CPU benchmark suite. However, I've not figured out how to modify the SPEC setup to ...
1
vote
2answers
115 views
Can rspec output the value that made a test fail?
I have statements like:
@obj[:attribute].eql?("TestValue").should be_true
And it would be nice if instead of just telling me that the test failed, it told me that it failed because @obj[:attribute] ...
1
vote
1answer
400 views
What should MiniTest::Spec files be named?
I want to use MiniTest::Spec, I found a couple resources to get started, but none of them mentioned what the test files (or spec files) should be named, and where they should be placed:
test/test_*
...
1
vote
3answers
73 views
How can I get autotest to notice changes in subdirectories?
I have some submodules organized like this:
|-- app
| |-- models
| | |-- foo
| | | |-- foo-1.rb
| | | |-- foo-2.rb
| | | |-- foo-3.rb
| | |-- foo.rb
How can I get ...
1
vote
1answer
905 views
Calling Rails.application.routes.recognize_path within an rspec test does not match any route in Rails 3
A Rails 3 application I'm working on contains some logic that invokes the following code (which I cannot change):
Rails.application.routes.recognize_path("/customers", :method => :get)
The ...
1
vote
1answer
212 views
qmake: Test for current spec
I would like to detect whether qmake is currently building using MingW (win32-gcc) or Visual Studio (win32-msvc200X).
At the moment I am using the following construct:
windows{
...
1
vote
4answers
209 views
Is the implementation of Auto Properties in the spec?
Can I rely on the fact that the underlying field to a property named Foo is called "k__BackingField" ?
1
vote
2answers
243 views
<cite> as part of semantic markup
One of the sites I develop has lots of information linked between each other; we have companies, we have products for those companies. The company page links to the page listing the products for that ...
0
votes
1answer
52 views
Ruby “no such file to load” error running spec from rake task
I have written tests using rspec. When I run default rake task by running
bundle exec rake spec
it gives following error, even though previously it used to work fine.
`require': no such file to ...
0
votes
1answer
30 views
Understanding path errors using Rails, link resource or answer please
Mac OSX 10.7.2,
Following a rails tutorial and have come to an error when:
rspec spec/
/System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/rubygems/custom_require.rb:31:in ...
0
votes
0answers
40 views
Spec-Writing Advice (and Contract based on it) for Outsourcing
A startup wants to write up a Spec for a web app, but they need to outsource the web-app development. The thinking is that a good spec will help guide the contract/Statement-of-Work for things like ...
0
votes
2answers
90 views
Scala spec unit tests
I ve got the following class and I want to write some Spec test cases, but I am really new to it and I don't know how to start. My class do loke like this:
class Board{
val array = ...
0
votes
3answers
53 views
Confusing with ruby spec
Which is the difference among spec / rspec and mspec?
In ruby spec home, it said that we should use mspec command.
But some other guys said it should be 'spec kind_of_spec.rb'.
Also someones said ...
0
votes
2answers
28 views
Is it possible to build an RPM for system configuration after fresh install of OS?
What I'm trying to do is create an RPM that I will run after a fresh install of the OS. I want it to run a custom script I have created that currently copies over a bunch of things to the OS and ...
0
votes
1answer
75 views
Rails Beginner Attempting TDD:
I'm new to unit testing and Rails in general. I've decided to build my projects in a TDD environment, but this has left me with some early questions.
I need help building the models to pass this ...